Welcome![Sign In][Sign Up]
Location:
Search - socket windows

Search list

[Internet-Networkftpanalysis

Description: ftp案例分析的所有源码及文档,windows的网络编程,利用了socket(套接字)。来实现消息和文件的传输-ftp case analysis of the source code and all documentation, windows network programming, use of the socket (socket). To achieve information and documents transmission
Platform: | Size: 2108416 | Author: linteng | Hits:

[OS DevelopDLLCallDemo

Description: 操作系统上机实验报告,进程间的通信,1. 选择Windows2000环境提供的进程通信工具:文件映射(filemap)、管道(Pipe或NamedPipe)、套接字(socket)完成同一机器上的两个进程、不同机器上的两个进程或不同操作系统下的两个进程之间的通信。-experimental operating system on the plane, inter-process communication, 1. Choose Windows 2000 environment, the process of communication tools : File Mapping (filemap) Pipeline (Pipe or NamedPipe) socket (socket) completed on the same machine two processes, different machines on the two different operating systems or process under the two processes of communication.
Platform: | Size: 1002496 | Author: 钱青鱼 | Hits:

[Internet-Networkws2_32_vc7.1

Description: windows 2k socket的源代码, 编译直接生成ws2_32.dll.-windows 2k socket source code, compile directly generated ws2_32.dll.
Platform: | Size: 270336 | Author: 面包 | Hits:

[Internet-Networkwinsockapi

Description: Windows Socket API 使用经验,以供大家参考-Windows Socket API experience, for your reference
Platform: | Size: 4096 | Author: 焦亚民 | Hits:

[Internet-NetworkCSocketfile-send-rec

Description: windows下文件基于组播的文件传输程序,已经测试传输成功.-windows where the document is based on multicast file transfer procedures, tests have been successfully transmitted.
Platform: | Size: 2330624 | Author: beidaole | Hits:

[Software Engineeringchat_file-transmition

Description: 利用Visual C++的Windows SOCKET网络编程实现局域网内正在使用本程序的所有主机的群聊、两主机之间的点对点聊天和文件传送功能,且具有以下特点:通信完全是异步的;各用户是对等的,不区分客户机和服务器,任何用户启动或关闭程序都不会影响其他用户的正常使用;使用多线程传输文件。 -using Visual C Windows Socket Programming Network is bringing LAN use this procedure in the mainframe group chat, between the two hosts and peer-to-peer file transfer chat function, which has the following features : Asynchronous communication is completely; users on the other, no distinction between client and server. Any user to toggle on or off the procedure will not affect other users of normal use; use multithreading to transfer files.
Platform: | Size: 945152 | Author: 彭双庆 | Hits:

[Internet-NetworkInsideWindowsSockets

Description: 深入WINDOWS SOCKET编程,清楚阐述SOCKET编程的基本原理,并附以详尽的实例-WINDOWS SOCKET-depth programming, SOCKET set out clearly the basic principles of programming, each accompanied by a detailed example of
Platform: | Size: 1396736 | Author: 尚半夜 | Hits:

[Database systemOftomatization

Description: 为了方便网络编程,90年代初,由Microsoft联合了其他几家公司共同制定了一套WINDOWS下的网络编程接口,即Windows Sockets规范,它不是一种网络协议,而是一套开放的、支持多种协议的Windows下的网络编程接口。本篇论文主要是介绍了在TCP/IP基础上利用winsock2对网卡进行编程,以达到网络流量监测的目的。论文首先介绍了TCP/IP协议,旨在介绍IP,TCP,UDP等比较重要的协议。主要是介绍IP头,TCP头,UDP头的特点,以便从IP头中可以获取源地址,目的地址,协议类型等信息。在随后的章节中提出了Socket的概念,Socket实际上提供了一个通信端口使所有拥有Socket的端口的计算机之间能够相互通信,在本论文中主要说明了socket的建立,监听和撤销的过程。具体到程序实现中,对网卡混杂模式的设置是通过原始套接字(raw socket)来实现的。为了让原始套接字能接受所有的数据,还需要通过将SOCK_RAW设置成SIO_RCVALL。对数据包的获取通过recv()函数来完成。最后要完成的工作就是对所捕获的IP数据包进行分析以提取出我们所需要的信息。在论文的最后是旨在说明进一步工作的展开. 关键词:网络流量测量 TCP/IP协议 WINSOCK编程 -To facilitate network programming and the beginning of the 1990s, Microsoft jointly by several other companies to develop a set of Windows programming network access , that is, Windows Sockets norms, it is not a network protocol, but a liberal, Multi-protocol support for the Windows network programming interface. The main purpose of this paper is to introduce a TCP/IP based on the use of the card for winsock2 programming, to achieve network traffic monitoring purposes. Papers first introduced the TCP/IP protocol, aimed at introducing IP, TCP, UDP, and other more important agreements. IP is introduced first, the first TCP, UDP first features to the IP header from access to the source address, destination address, Agreement type, and other information. In the ensuing chapters of the Sock
Platform: | Size: 10240 | Author: wq57 | Hits:

[Internet-NetworkTcpSocketClass

Description: vc源代码,用于windows环境下socket编程,相关的方法封装成类Class,非常好用,并且支持多线程环境下使用。-vc source code for windows environment socket programming, related to the encapsulation method Class category, very convenient, and to support multithreaded environment.
Platform: | Size: 3072 | Author: lvzhuqiang | Hits:

[OtherWinPing

Description: 一个Windows ping源码,用VC++6.0编写,socket 入门编程-a ping-source Windows, VC 6.0 preparation, induction socket programming
Platform: | Size: 5448704 | Author: 赵恩良 | Hits:

[Telnet ServerMyTelnet

Description: telnet服务器的实现: 1.客户端通过telnet连接后,服务器返回系统的一些信息(自己定义,至少应该包括程序作者的学号),之后显示提示符"login:"提示用户输入用户名进行登录 2.要求对用户名和密码进行验证。用户名和密码均为学号的后3位。如果用户名和密码错误则返回invalid user or passwd并提示重新输入 3.服务器端至少支持如下命令(命令不带参数) author:返回程序作者的相关信息 date:返回服务器的当前日期,日期的格式自己定义,但在help中做出说明 time:返回服务器的当前时间,时间的格式自己定义,但在help中做出说明 help:返回服务器所支持的命令 bye:与服务器断开连接 若输入了不支持的命令,则应回显相应的提示,如提示用户键入help来查看相应的命令 提示:服务器端有一个接收客户端输入字符的缓冲区,逐个字符进行接收;当发现是回车键后,即执行已接收字符对应的命令并回显.另外,telnet.exe是windows下自带的程序 设计的要求如下: 1.使用基本的套接口函数进行开发,即使用socket()、bind()、listen()、accept()等 2.不使用图形界面,只要能用文本显示相关信息即可,另外,需要把这些相关信息写入到一日志文件中(文件名为:学号.txt) 内附程序说明书
Platform: | Size: 70656 | Author: 张某某 | Hits:

[Internet-Networkserver-nonblockingsocket

Description: UDP收包程序例子,基于非阻塞模式socket,并利用select()实现接收超时。-UDP packet admission procedure examples, based on the non-blocking mode of socket, and use select () to receive overtime realize.
Platform: | Size: 7168 | Author: liu | Hits:

[Internet-NetworkQQ2.0

Description: 基于MFC和WINSOCK的网络通信软件设计 一、 介绍计算机网络与网络通信的概念,然后阐述了基于客户机/服务器模式网络通信程序实现的关键技术Windows Socket,最后对通信程序进行设计和分析,给出了逻辑和流程图及部分关键程序。 二、 程序整体设计过程,主要介绍如何采用面向对象的方法进行分析和设计,以及在设计和实现过程中所采用的模式(Pattern) -Based on the MFC and WINSOCK network communication software design, computer network and introduce the concept of network communication, and then expounded on client/server model of network communication procedures realize the key technologies Windows Socket, the last of the communication program design and analysis, given the logic and flow chart and some of the key procedures. Second, the program overall design process, mainly how to introduce the object-oriented analysis and design methods, as well as in the design and realization of the process of the model (Pattern)
Platform: | Size: 1122304 | Author: | Hits:

[Internet-NetworkGroupTalk

Description: windows socket 网络编程的grouptalk例子-windows socket network programming examples grouptalk
Platform: | Size: 39936 | Author: 旺旺 | Hits:

[assembly languagePing

Description: 类似于Windows自带的Ping.exe程序,用 ICMP 协议实现 Ping 的功能;socket的另一种用法-Ping.exe similar to Windows
Platform: | Size: 6144 | Author: 涂发国 | Hits:

[Ftp Client113172206WebQueryforFTP

Description: windows环境下Socket网络编程,ftp程序源代码5
Platform: | Size: 36864 | Author: 胡利军 | Hits:

[Internet-Network20060104001

Description: windows环境下Socket网络编程,ftp程序源代码6-windows environment Socket Network Programming, ftp source code 6
Platform: | Size: 25600 | Author: 胡利军 | Hits:

[File FormatWindowsSocketMFC

Description: MFC和Windows socket通信简明教程-MFC and Windows socket communication simple tutorial
Platform: | Size: 192512 | Author: ywm | Hits:

[Sniffer Package capturenetArp

Description: 相信各位都玩过SOCKET编程,用CSocket进行网络通讯非常方便,但有时想搞点底层点东西却非常麻烦,用windows的API最低也只能SOCK_RAW,顶多能看到IP层数据,如果想处理数据链路层的数据就无从下手了,幸好某天发现了winpcap东西。用了它处理底层的东西就非常方便。 winpcap主要有两个dll供程序员直接调用,pcap.dll和packet.dll,本程序主要使用pcap.dll.详细请看代码,本人也是刚接触WinPcap,所以一不定有一些错漏的地方,请各位大蝦不要见笑。 如果程序有编译不过去的地方,请务必先按装winPcap库,更新VC6的PlatformSDK -I am sure we all played SOCKET programming, use CSocket for network communication is very convenient, but sometimes want to point at the bottom of things is very troublesome, with the lowest API of windows can only SOCK_RAW, at most able to see IP layer data, if you want to deal with data link layer data can never gain the upper hand, and fortunately found one day things WinPcap. Deal with it on the bottom of things very convenient. WinPcap has two main dll programmers for direct call, pcap.dll and packet.dll, the main use of this procedure pcap.dll. details please see the code, and I was a刚接触WinPcap, so one has some mistakes in the indeterminate place, please not a laughing stock of shrimp. If the program does not have to compile the last place, be sure to press installed Winpcap library updated VC6 the PlatformSDK
Platform: | Size: 48128 | Author: iie9615 | Hits:

[Delphi VCLsocket_sever

Description: 自写采用delphi控制的tcp通讯例程,包中exe文件即可当tcp 服务器,也可当tcp终端,打开两个窗口,当模拟服务器也终端的工作过程 -Since writing using delphi control tcp communication routines, the package can be when exe file tcp server can also be when the tcp terminal, open two windows, when the analog terminal servers working process
Platform: | Size: 402432 | Author: 张诚 | Hits:
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 50 »

CodeBus www.codebus.net